home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 3 / CD ACTUAL 3.iso / linux / incoming / jstools-.6v3 / jstools- / jstools-tk3.6v3.0 / bin / boiler_header.tcl next >
Encoding:
Text File  |  1995-03-14  |  563 b   |  24 lines

  1. ## begin boiler_header
  2.  
  3. global VERSION
  4. set VERSION {3.6/3.0}
  5.  
  6. if {[info exists env(JSTOOLS_LIB)]} {
  7.   set jstools_library $env(JSTOOLS_LIB)
  8. } else {
  9.   set jstools_library /usr/local/lib/jstools
  10. }
  11.  
  12. # add the jstools library to the library search path:
  13.  
  14. set auto_path [concat [list $jstools_library] $auto_path]
  15.  
  16. # check for ~/.tk and prepend it to the auto_path if it exists.
  17. # that way the user can override and customise the jstools libraries.
  18.  
  19. if {[file isdirectory ~/.tk]} then {
  20.   set auto_path [concat [list [glob ~/.tk]] $auto_path]
  21. }
  22.  
  23. ## end boiler_header
  24.